ConfigurableData
Members
DefaultValue
The default value of the configurable, if it has one.
It is of the type any
.
It may also be nil
.
Description
A description of the configurable.
It is of the type string
.
Name
The name of the configurable.
It is of the type string
.
Options
The options that the configurable can take. It is one (not all) of the following types:
Subtype A
It is an array whose values are of the type string
.
Subtype B
It is an array whose values are of the type number
.
It may also be nil
.
Type
The type of the configurable.
It is of the type string
.
Luau Type
This is the luau type for ConfigurableData
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type ConfigurableData = {
Type: string,
Description: string,
Options: ({ string } | { number })?,
DefaultValue: any?,
Name: string,
}